とにかくlocalの変更を急いでremote repoにpushしたいときに使うcommand
適当にgit branchを切ってpushする
code:sh
git branch wip
git switch wip
git add -A
git commit -m "localのを一旦remoteに保存する"
git push -u origin HEAD
#git
#2021-10-01 09:22:16